home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Applications
/
MacGzip 1.0
/
source
/
Mac
/
GzErrors.h
< prev
next >
Wrap
Text File
|
1995-08-26
|
631b
|
32 lines
/*
* File: errors.h
* Project: DXF to RIB
* (c) SPDsoft Tuesday, June 21, 1994, GTIC
*/
#ifndef _MAC_ERRORS_H_
#define _MAC_ERRORS_H_
#define INPUT_ERR 1
#define SYS_ERR 2
#define STDC_ERR 5
#define PROG_ERR 3
#define NO_ERR 4
#define STDC_ERR 5
#define ABORT_ERR 10
#define QUIT_ERR 9
#define END_ERR 8
#define ASK_ERR 7
#define WARN_ERR 5
#define INFO_ERR 2
#define DEBUG_ERR 1
extern OSErr err;
extern int DoStdIO( void *foo, const char *fmt, ...);
extern int DoError( int ErrType, int ErrSever,const char *, ...);
extern char *GetErrFmt( short ErrType, short ErrID );
extern void DoNotification( void );
#endif